home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / xlisp2.1 / xldist01.zoo / lsp / ackerman.lsp next >
Encoding:
Lisp/Scheme  |  1990-11-09  |  116 b   |  5 lines

  1. (defun ack (m n)
  2.     (cond ((zerop m) (1+ n))
  3.           ((zerop n) (ack (1- m) 1))
  4.           ((ack (1- m) (ack m (1- n))))))
  5.